home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d14 / cppwin10.arc / COPENDLG.HPP < prev    next >
C/C++ Source or Header  |  1991-01-11  |  566b  |  29 lines

  1. /***
  2.     Class Dlg Header file.
  3. Revisions:
  4. 12/12/90 KM Initial coding.
  5. ***/
  6.  
  7. #ifndef COpenDlg_INC
  8. #define COpenDlg_INC
  9.  
  10. class COpenDlg : public CDlg {
  11.     public:
  12.         COpenDlg(LPSTR lpExt, BOOL bFExist);
  13.  
  14.         BOOL DoInitDialog(WORD nFocusID, LONG lParam);
  15.  
  16.         BOOL DoCommand(WORD ControlID, LONG lParam);
  17.  
  18.         void GetFileName(LPSTR lpName);
  19.  
  20.     protected:
  21.         char szFileName[128];        // Place to store file name selected.
  22.         char szFileMask[10];         // Extension for file name.
  23.         BOOL bExist;                // TRUE if user want's file to exist
  24.  
  25.     private:
  26. };
  27.  
  28. #endif
  29.